From 8bbad38d4fed6f7c0fcde98f2d870a1db4e66217 Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Wed, 10 Mar 2004 01:37:16 +0000 Subject: [PATCH] Fixed 'call on non-object' error on Special:Contributions --- includes/SpecialContributions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index a68c7c20b7..11f2366dde 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -9,7 +9,7 @@ function wfSpecialContributions( $par = "" ) if( $par ) $target = $par; else - $target = $wgResult->getVal( 'target' ); + $target = $wgRequest->getVal( 'target' ); if ( "" == $target ) { $wgOut->errorpage( "notargettitle", "notargettext" ); -- 2.20.1